home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
ada
/
c01oop.zip
/
CPPWKBK
/
CPPV2-12.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1992-08-25
|
253b
|
14 lines
#define HEADER "C++ Problem 2.1 by Rick Conn using Borland C++"
#include <stdio.h>
int fcppv21(float); // prototype with wrong arg type
void main(void)
{
int i;
printf("%s\n", HEADER);
i = fcppv21(2.0);
printf("I = %d\n", i);
}